Passed
Pull Request — master (#442)
by
unknown
06:24
created

HtmlColumn   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 5
dl 0
loc 5
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A toString 0 3 1
1
export class HtmlColumn {
2
  constructor(public readonly text: string, public readonly html: string) {}
3
4
  public toString() {
5
    return this.text;
6
  }
7
}
8